h2 {
    text-align: center;
    margin-top: 20px;
    color: #0099ff;
}

/* Section Styling */
section {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about p {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Event Schedule */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #0099ff;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Speaker List */
.list {
    list-style: none;
    padding: 0;
}

.list li {
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Venue Details */
#venue p {
    font-size: 17px;
    line-height: 1.6;
}

/* Registration Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input,
button {
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #0099ff;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #0099ff;
}

/* Sponsors */
.sponsor-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sponsor-list img {
    max-width: 150px;
    height: auto;
}

/* FAQ */
details {
    background: #f9f9f9;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}

details summary {
    font-size: 18px;
    font-weight: bold;
}

details p {
    margin-top: 10px;
}


h2 {
    color: #333;
    text-align: center;
}

.sectionEvents {
    background: #fff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.event {
    background: #e3e3e3;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn:hover {
    background: #0056b3;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .event-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .event {
        width: 48%;
    }
}

